home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / dev / gcc / libnix.lha / gnu / lib / libnix / sources.lha / nix / string / strcmp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-09  |  133 b   |  12 lines

  1. #include <string.h>
  2.  
  3. int strcmp(const char *s1,const char *s2)
  4.   int r;
  5.   
  6.   while (!(r=*s1++-*s2) && *s2++)
  7.     ;
  8.  
  9.   return r;
  10. }
  11.